What is enum4linux
enum4linux is an alternative to enum.exe on Windows, enum4linux is used by penetration testers to enumerate Windows and Samba hosts.
enum4linux provides the following functionality:
- RID cycling (When RestrictAnonymous is set to 1 on Windows 2000)
- User listing (When RestrictAnonymous is set to 0 on Windows 2000)
- Listing of group membership information
- Share enumeration
- Detecting if host is in a workgroup or a domain
- Identifying the remote operating system
- Password policy retrieval (using polenum)
enum4linux Cheat Sheet
Command | Description |
---|---|
|
Verbose mode, shows the underlying commands being executed by enum4linux |
|
Do Everything, runs all options apart from dictionary based share name guessing |
|
Lists usernames, if the server allows it - (RestrictAnonymous = 0) |
|
If you've managed to obtain credentials, you can pull a full list of users regardless of the RestrictAnonymous option |
|
Pulls usernames from the default RID range (500-550,1000-1050) |
|
Pull usernames using a custom RID range |
|
Lists groups. if the server allows it, you can also specify username |
|
List Windows shares, again you can also specify username |
|
Perform a dictionary attack, if the server doesn't let you retrieve a share list |
|
Pulls OS information using smbclient, this can pull the service pack version on some versions of Windows |
|
Pull information about printers known to the remove device. |
enum4linux Command Examples
The following are examples of enum4linux usage.
enum4linux Command Examples
The following command performs a complete enum4linux scan:
enum4linux -a target-ip
The following command retrieves a list of usernames:
enum4linux -U target-ip
The following command retrieves the local machine groups:
enum4linux -G target-ip
enum4linux Multiple IP’s
The following command scans a subnet using enum4linux:
enum4linux -a target-subnet/24
If you found this enum4linux cheat sheet useful, please share it below.
Document Changelog
- Last Updated: 12/02/2024 (12th of February 2024)
- Author: Arr0way
- Notes: Checked syntax for the enum4linux tool was correct for current version.